If txtInterval = "" Then txtInterval = 1: txtInterval.SetFocus
If IsNumeric(txtInverval) = True Then
I = 0
Do While I <= 9
tmrScan(I).Interval = txtInterval
I = I + 1
Loop
Else
MsgBox "Error: Interval could only be a number in ms, resetting.", vbCritical, "Error"
txtInterval = 100
End If
End Sub
Private Sub ws_Connect(Index As Integer)
lstIpes.AddItem ws(Index).RemoteHostIP
ws(Index).Close
End Sub
Private Sub ws_Error(Index As Integer, ByVal Number As Integer, Description As String, ByVal Scode As Long, ByVal Source As String, ByVal HelpFile As String, ByVal HelpContext As Long, CancelDisplay As Boolean)